// JavaScript Document

// Define variable for browser type using the userAgent object
var browser=navigator.userAgent

function select() {
	if(browser.indexOf("Firefox") != -1) {
		document.write('<form action="feedback.php" method="post"><p style="padding-bottom: 10px;">Your Name <input name="name" type="text" size="40" maxlength="64" /></p><p style="padding-bottom: 10px;">Your E-mail Address <input name="replyTo" type="text" onclick="this.value=\'\';" value="Sample@somewhere.com" size="40" maxlength="64"></input></p><textarea name="comment" cols="58" rows="12"></textarea><p style="float: right;"><input name="Submit" type="submit" onclick="mailto:admin@snowcrashonline.com" value="submit" /></p></form>')
	} else
	document.write('<form action="feedback.php" method="post"><p style="padding-bottom: 10px;">Your Name <input name="name" type="text" size="40" maxlength="64" /></p><p style="padding-bottom: 10px;">Your E-mail Address <input name="replyTo" type="text" onclick="this.value=\'\';" value="Sample@somewhere.com" size="40" maxlength="64"></input></p><textarea name="comment" cols="66" rows="20"></textarea><p style="float: right;"><input name="Submit" type="submit" onclick="mailto:admin@snowcrashonline.com" value="submit" /></p></form>')
}
