// JavaScript Document
function openWindow1(url) {
newWindow = window.open(url, 'bio_dv', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=no,dependent,width=795,height=480,left=10,top=10');
}
function openWindow2(url) {
newWindow = window.open(url, 'bio_dv', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=yes,dependent,width=795,height=600,left=10,top=10');
}
function openWindow3(url) {
newWindow = window.open(url, 'bio_dv', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=no,dependent,width=795,height=600,left=10,top=10');
}
function openWindow4(url) {
newWindow = window.open(url, 'bio_dv', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=no,dependent,width=795,height=450,left=10,top=10');
}
function openWindow5(url) {
newWindow = window.open(url, 'bio_dv', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=yes,dependent,width=800,height=600,left=10,top=10');
}
function openUK() {
newWindow = window.open('uk_show.html', 'bio_dv', 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=yes,dependent,width=800,height=600,left=150,top=100');
}
function openPDF(url) {
	var width = 795;
	var height = 470;
	var left = parseInt((screen.availWidth/2) - (width/2));
	var top = parseInt((screen.availHeight/2) - (height/2));
	var parameters = 'toolbar=no,status=no,scrollbars=no,location=no,resizable=no,dependent,width=' + width +',height=' + height +',left=' + left + ',top=' + top;
	newWindow = window.open(url, 'file_w', parameters);
}
function openPage(url) {
	var width = 795;
	var height = 470;
	var left = parseInt((screen.availWidth/2) - (width/2));
	var top = parseInt((screen.availHeight/2) - (height/2));
	var parameters = 'toolbar=no,status=no,scrollbars=yes,location=no,resizable=no,width=' + width +',height=' + height +',left=' + left + ',top=' + top;
	newWindow = window.open(url, 'file_w', parameters);
}
