// JavaScript Document
function openpopup(){
	window.open('', 'popup', 'width=500,height=400,scrollbars=1,left=' + ((screen.width - 500)/2) + ',top=' + ((screen.height - 400)/2) );	
	}
