function OpenBigWindow() {
	var sWidth = 630;
	var sHeight = 630;
	var x = screen.width/2 - (sWidth/2);
	var y = screen.height/2 - (sHeight/2);
		
	window.open('main.htm', 'mainsite', 'top=' + y + ', left=' + x + ', width=' + sWidth + ',height=' + sHeight + ',scrollbars=no');
}

// pop up gallery windows
function popup(img) {
	var sx = (screen.width) ? (screen.width/4 - 225) : 0;
	var sy = (screen.height) ? (screen.height/4 - 160) : 0;

	mywindow = window.open ('' , 'pic' , 'width=600,height=600,screenX=' + sx + ',screenY=' + sy + ',left=' + sx + ',top=' + sy + ',directories=0,location=0,menubar=0,status=0,scrollbars=0,toolbar=0');
	setTimeout('mywindow.focus();',300);
	
	mywindow.document.write('<html><head><title>JEN CLOHER GALLERY</title></head><body bgcolor="#000000"><table width="99%" height="99%"><tr><td align="center" valign="middle"><img src="MEDIA/GALLERY/' + img + '.jpg" border="0"></td></tr></table></body></html>');
}

// pop up video windows
function popupVideo(img) {
	var sx = (screen.width) ? screen.width/4 : 0;
	var sy = (screen.height) ? screen.height/4 : 0;

	mywindow = window.open ('video.html?url='+img , 'video' , 'width=550,height=450,screenX=' + sx + ',screenY=' + sy + ',left=' + sx + ',top=' + sy + ',directories=0,location=0,menubar=0,status=0,scrollbars=0,toolbar=0');
	setTimeout('mywindow.focus();',300);	
}

// pop up signup window
function popupSignup() {
	var w = 650;
	var h = 650;
	var sx = (screen.width) ? (screen.width - w)/2 : 0;
	var sy = (screen.height) ? (screen.height-h)/2 : 0;

	var signupWindow = window.open ('form.html' , 'signup' , 'width=' + w + ',height=' + h + ',screenX=' + sx + ',screenY=' + sy + ',left=' + sx + ',top=' + sy + ',directories=0,location=1,menubar=1,status=1,scrollbars=1,toolbar=1');
	setTimeout('signupWindow.focus();',300);	
}

