// JavaScript Document 2009. All Right Reserved | Adult Web Site Design By http://bluedesignstudios.com */

function SetName(id) {
	if (id == 'login') {
		if (document.getElementById(id).value == 'E-mail') document.getElementById(id).value = '';
		else if (document.getElementById(id).value == '') document.getElementById(id).value = 'E-mail';
	}
	if (id == 'pass') {
		if (document.getElementById(id).value == 'Password') document.getElementById(id).value = '';
		else if (document.getElementById(id).value == '') document.getElementById(id).value = 'Password';
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}