	// JavaScript Document

function Popup(url,width,height) {
	popup = window.open(url, 'sd', "width=' + width + ', height=" + height +", left=200, top=100, scrollbars=yes, resizable=yes");
	popup.focus();
	//return false;
}

function PopupPrint(url, width, height) {
	popupprint = window.open(url, 'sd', "width=' + width + ', height=" + height +", left=200, top=100, scrollbars=yes, resizable=yes");
	popupprint.focus();
	popupprint.print();
	//return false;
}

