function popup(width,height,doc){
	if(window.innerWidth){
		LeftPosition =(window.innerWidth-width)/2;
		TopPosition =((window.innerHeight-height)/4)-50;
	} else {
		LeftPosition =(parseInt(window.screen.width)-width)/2;
		TopPosition=((parseInt(window.screen.height)-height)/2)-50;
	}
	attr = 'resizable=no,scrollbars=yes,width=' + width + ',height=' +
	height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +
	TopPosition + '';
	popWin=open('', 'new_window', attr);
	/*
	popWin.document.write('<body><div align=center>');
	popWin.document.write('<b>This is a test popup window</b><br><br>');
	popWin.document.write('Content goes here<br>');
	popWin.document.write('Content goes here<br>');
	popWin.document.write('Content goes here<br>');
	*/
	popWin.document.write('<html><head><title>Your request to participate in Day of Earth 2007 Song Contest</title></head><body>');
	popWin.document.write(doc);
	popWin.document.write('<p align="center"><input type="button" onClick="window.print()" value="Print"></p>');
	popWin.document.write('</body></html>');
}

function popupDoc(width,height,doc,docName){
	if(window.innerWidth){
		LeftPosition =(window.innerWidth-width)/2;
		TopPosition =((window.innerHeight-height)/4)-50;
	} else {
		LeftPosition =(parseInt(window.screen.width)-width)/2;
		TopPosition=((parseInt(window.screen.height)-height)/2)-50;
	}
	attr = 'resizable=no,scrollbars=yes,width=' + width + ',height=' +
	height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +
	TopPosition + '';
	popWin=open(doc,docName,attr);
}