function winPopText(titl,txt,imgw,imgh) {

var winw = eval(imgw);
var winh = eval(imgh);
var string = "width="+winw+", height="+winh;

var win = window.open("","win",string); // a window object
with (win.document) {
//  open("text/html", "replace");
	write("<HTML><HEAD><TITLE>"+titl+"</TITLE></HEAD>\n<link rel='stylesheet' type='text/css' href='http://www.code-line.com/stylesheets/codelinemain.css'>\n\n<BODY bgcolor='#ffffff' leftmargin='5' topmargin='5' marginheight='5' marginwidth='5'>"+txt+"<p>\n<img src='http://www.code-line.com/images/spacer.gif' height='5' width='5'><br>\n<A HREF='JavaScript:window.close();'>Close</A>\n</P>\n\n</BODY>\n</HTML>");
  close();
	}
}

function winPopImage(titl,txt,imgw,imgh) {

var winw = eval(imgw);
var winh = eval(imgh);
var string = "width="+winw+", height="+winh;

var win = window.open("","win",string); // a window object
with (win.document) {
  open("text/html", "replace");
	write("<HTML><HEAD><TITLE>"+titl+"</TITLE></HEAD>\n<link rel='stylesheet' type='text/css' href='http://www.code-line.com/stylesheets/codelinemain.css'>\n\n<BODY bgcolor='#ffffff' leftmargin='5' topmargin='5' marginheight='5' marginwidth='5'>"+txt+"<p>\n<img src='http://www.code-line.com/images/spacer.gif' height='5' width='5'><br>\n<A HREF='JavaScript:window.close();'>Close</A>\n</P>\n\n</BODY>\n</HTML>");
  close();
	}
}

function junk(titl,imgfile,imgw,imgh) {

var winw = eval(imgw) + 20;
var winh = eval(imgh) + 45;
var string = "width="+winw+", height="+winh;

var win = window.open("","win",string); // a window object
with (win.document) {
  //open("", "replace");
	write("<HTML><HEAD><TITLE>"+titl+"</TITLE></HEAD>\n<link rel='stylesheet' type='text/css' href='http://www.code-line.com/stylesheets/codelinemain.css'>\n<CENTER>\n<BODY bgcolor='#ffffff' leftmargin='5' topmargin='5' marginheight='5' marginwidth='5'><img src='"+imgfile+"' height='"+imgh+"' width='"+imgw+"'><br>\n<img src='http://www.code-line.com/images/spacer.gif' height='5' width='5'><br>\n<A HREF='JavaScript:window.close();'>Close</A>\n</P>\n</CENTER>\n</BODY>\n</HTML>");
  close();
	}
}

function winpopup(html,titl,wt,ht) {

var string = "width="+wt+", height="+ht;

var win = window.open(html,titl,string,"resize=1","scrollbars=0"); // a window object

}

