// JavaScript Document

var cw_pop_win;

function cw_pop_page(url,width,height) {
	cw_pop_win = window.open(url,"CWPopWin","width=" + width + ",height=" + height + ",top=" + 100 + ",left=" + 100 + ",toolbar=no");
	cw_pop_win.focus();
}

function cw_pop_img(src,imgwidth,imgheight,bgcolor,title,text) {
	if(!bgcolor) bgcolor="#888888";
	if(!title) poptitle="Sample Photo";
	if(!text) poptext="An example...";
	cw_pop_win = window.open("","CWPopWin","width=" + (imgwidth+20) + ",height=" + (imgheight+150) + ",top=" + 100 + ",left=" + 100 + ",toolbar=no");
	with(cw_pop_win.document) {
		open();
		write("<html>");
		write("<head>");
		write("<title>" + poptitle + "</title>");
		write("</head>");
		write("<body bgcolor='" + bgcolor + "' style='font-family:Verdana,Helvetica,Arial,sans-serif'>");
		write("<div style='font-weight:bold;font-size:15px;text-align:center;'>" + title + "</div>");
		write("<div style='text-align:center;margin:8px 0px 8px 0px;'>");
		write("<img src='" + src + "'");
		write(" width='" + imgwidth + "' ");;
		write(" height='" + imgheight + "' ");
		write(" alt='" + poptitle + "' ");
		write(" style='border:1px solid black;' />");
		write("</div>");
		write("<div style='font-size:12px;text-align:center;'>" + poptext + "</div>");
		write("</body>");
		write("</html>");
		close();
	}
	cw_pop_win.resizeTo((imgwidth+20),(imgheight+150));
	cw_pop_win.focus();
}
