function flash(tag) {
	
	document.write(tag);
}

 function PopupImage(img) {
	w=open("",'image','weigth=toolbar=no,scrollbars=no,resizable=no, width=620, height=500');
	w.document.write("<HTML><BODY onblur=\"window.close();\"><IMG src='"+img+"'>");
	w.document.write("</BODY></HTML>");
	w.document.close();
} 

function popUp(strURL,strType,strHeight,strWidth) {

	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	newWin = window.open(strURL, 'newWin', strOptions);
	newWin.focus();
} 