function winOpen(loc,nimi,scr,rez,pwidth,pheight) {
ltpopup = window.open (loc,nimi,"directories=0,toolbar=0,location=0,status=0,menubar=0,scrollbars="+scr+",resizable="+rez+",width="+pwidth+",height="+pheight+",copyhistory=1");
}
// 
function pilt(ploc,pnimi,pwidth,pheight) {
  myWin = open('', 'displayWindow', 'toolbar=no,directories=no,status=no,location=no,resizable=no,scrollbars=no,menubar=no,width='+(pwidth+36)+',height='+(pheight+36)+'');
  myWin.document.open();
  myWin.document.write('<html>\n\r<head>\n\r<title>'+pnimi+'<\/title>\n\r<\/head>'
  +'\n\r<body style="background-color: #fff; margin: 18px; padding: 0;">'
  +'\n\r<a href="javascript:window.close();"><img src="'+ploc+'" height="'+pheight+'" width="'+pwidth+'" alt="" border="0" title="click to close"><\/a>'
  +'\n\r<\/body>\n\r<\/html>');
  myWin.document.close();  
}
//
function nospam(user,domain) {
	locstring = "mailto:" + user + "@" + domain;
	window.location = locstring;
}
//
function changeLinks(linknum,colr) {
	/*for (i = 1 ; i <= mlinks ; i++) { 
		document.getElementById("mlink" + i).className = "menu3";
	}
	document.getElementById("mlink" + linknum).className = "menu3b";*/
	document.getElementById("mlink" + linknum).style.color = "#" + colr;
}
