function ae_prompt(q, a, f, g) {
	temp1 = document.getElementById('aep_t');
	temp2 = document.getElementById('aep_user');
	temp3 = document.getElementById('aep_pass');
	temp4 = document.getElementById('aep_text1');
	temp5 = document.getElementById('aep_text2');
	temp6 = document.getElementById('aep_ovrl');
	temp9 = document.getElementById('aep_ww');
	temp7 = document.getElementById('aep_text1');
	temp8 = document.getElementById('aep_text1');
	
	temp1.innerHTML = 'Enter Information:'; 
	temp2.innerHTML = q;
	temp3.innerHTML = a;
	temp4.value = f;
	temp5.value = g;
	temp6.style.display =  '';
	temp9.style.display = '';
	temp7.focus();
	temp8.select();
}
 
function ae_clk(m) {
	if (!m) { 
		window.location="http://us.bluestarinc.com/vartech09"  // user pressed cancel, call callback with null
	}
	else{
		 if (document.getElementById('aep_text1').value == "bluestar_guest")
		 {
			 if (document.getElementById('aep_text2').value == "bluestar_2010")
			 {
				 document.getElementById('aep_ovrl').style.display = 'none';
				 document.getElementById('aep_ww').style.display = 'none';
				 document.getElementById('aep_ww_bg').style.display = 'none';
			 }
			 else
			 {
				alert("Password incorrect")
			 	window.location="http://us.bluestarinc.com/vartech09"
			 }
		 }
		 else
		 {
				alert("User incorrect")
			 	window.location="http://us.bluestarinc.com/vartech09"
		 }
	}
}
