// JavaScript Document
function openPic(url) {
newWindow = window.open(url, 'pic', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=yes,dependent,width=795,height=470,left=150,top=25');
}

function openPDF(url) {
newWindow = window.open(url, 'pdf', 'toolbar=no,status=no,scrollbars=no,location=no,resizable=yes,dependent,width=795,height=470,left=150,top=25');
}

function openGE(param) {
	url = "global_exposure.php?cn="+param;
	newWindow = window.open(url, 'ge', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=no,dependent,width=640,height=280,left=150,top=25');
}

function request_list(){
	newWindow = window.open('request_list.php', 'list', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=no,dependent,width=480,height=360,left=150,top=25');
}