
function PopupURL(url) {
	window.open(url);
}

function PopupContent(cnt) {
	var w=window.open("", null, "location=0,status=0,scrollbars=1,resizable=1");
	w.document.open();
	w.document.write(cnt);
	w.document.close();
}

function PopupAttachment(cnt) {
	var w=window.open("", null, "location=0,status=0,scrollbars=0,width=980,height=840,resizable=0");
	w.document.open();
	w.document.write(cnt);
	w.document.close();
}

function PopupPdfAttachment(url) {
	var w=window.open(url,null, "location=0,status=0,scrollbars=0,width=980,height=840,resizable=0");
}

function CloseFlash(prm) {
	self.close();
}

function OpenMail(prm) {
}
