//<![CDATA[
function popWin(id, url, w, h, rs, tb, lb, dir, st, mb, sb)
{
	var o = "" +
	((tb) ? "toolbar=" + tb + "," : "") +
	((lb) ? "location=" + lb + "," : "") +
	((dir) ? "directories=" + dir + "," : "") +
	((st) ? "status=" + st + "," : "") +
	((mb) ? "menubar=" + mb + "," : "") +
	((sb) ? "scrollbars=" + sb + "," : "") +
	((rs) ? "resizable=" + rs + "," : "") +
	((w) ? "width=" + w + "," : "") +
	((h) ? "height=" + h + "," : "");
	if(o.length > 1)
		o = o.substring(0,o.length - 1)
	window.open(url,id,o);	
}

function targetParent(url)
{
	if(window.opener && !window.opener.closed)
		window.opener.document.location = url;
}

//]]>