<!-- ********************************************** -->
<!--      This function opens a pop_up window       -->
<!-- ********************************************** -->
function openWin(file,w,h,s) {
    var scroll = "no";    <!-- scroll = no -->
    if (s == "yes")
	{
	  scroll = "yes,resizable=1";    <!-- scroll and resize -->
	}
	params = "scrollbars=" + scroll + ",width=" + w + ",height=" + h;
	
	win = window.open(file,'pics',params);
	win.focus();
	return;
}
function open_Email_Win(file,w,h) {
	params = "width=" + w + ",height=" + h;
	win = window.open(file,'Email',params);
	win.focus();
	return;
}
