// JavaScript Document

function popup(href, width, height){
	popup_options = 'width='+ width +', height='+ height +', toolbar=no,status=no,scrollbars=yes,resizable=yes';
	var w = window.open(href, 'pop_up', popup_options);
	//w.document.close();
	w.focus();
}

function openZoom(url){
	window.open(url, "zoom", "width=750, height=700, toolbar=no,status=no,scrollbars=yes,resizable=yes");
}

function openView(href, width, height){
	window.open(url, "view", "width=750, height=700, toolbar=no,status=no,scrollbars=yes,resizable=yes");
}
