function popwin(img, zw, zh)
{
    var generator=window.open('','name', 'height='+zh+' ,width =' + zw + ',resizable=yes,scrollbars=yes');
  
    generator.document.write('<html><head><title>Rayban Rockstar</title>');
    generator.document.write('<link rel="stylesheet" href="style.css">');
    generator.document.write('</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
    generator.document.write('<div align="center" id="zoomimg"><img src="'+img+'" border="0"></div>');
    generator.document.write('</body></html>');
    generator.document.close();
}


function checkAgree()
{
	if(!document.regform.agree.checked)
	{
		alert("You need to agree to the contest mechanics to be a registered member");
		return false;
	 }
	return true;
}

function requirePhotoTitle()
{	
	if(document.photoUp.caption.value == "")
	{
		alert("Pls put a title for your photo. Thank you.");
		return false;
	 }
	document.photoUp.submit();
}