// JavaScript Document

function loadimg(svar)
{
	window.open(svar, "img", "height=480px,width=640px");
}

function checkform()
{
	if (document.all.txtemail.value.length == 0)
	{
		alert("Please enter your email address to continue...");
		return false;
	}
	else
		return true;
}