function newPicWindow (p_title, p_image, p_w, p_h)
{
	var l_w = p_w + 30;
	var l_h = p_h + 50;

	PicWindow = open ('', 'CPU_World_Zoom', 'resizable=yes,scrollbars=yes,width=' +
		l_w + ',height=' + l_h);
	PicWindow.document.write('<HTML><HEAD><TITLE>' + p_title + '</TITLE></HEAD>');
	PicWindow.document.write('<BODY><link rel="stylesheet" href="/cpu_world.css" type="text/css"><TABLE WIDTH="100%" BORDER=0 CELLPADDING=0 CELLSPACING=0 CLASS="CW_cpudata"><TR BGCOLOR="#C0C0C0"><TD ALIGN=CENTER><B>' + p_title + '</B></TR>');
	PicWindow.document.write('<TR><TD ALIGN=CENTER STYLE="border-style: solid; border-width: 1"><IMG SRC="' + p_image + '" ALT="' + p_title + '"></TR>');
	PicWindow.document.write('<TR><TD ALIGN=RIGHT BGCOLOR="#404040"><FONT SIZE=1 COLOR="#FFFFFF">(c) Copyright 2003, 2004 Gennadiy Shvets</FONT>&nbsp;</TR>');
	PicWindow.document.write('</TABLE></BODY></HTML>');
	PicWindow.document.close();
}

function newWindow (p_script, p_w, p_h)
{
	var l_w = p_w + 30;
	var l_h = p_h + 50;

	GenWindow = open (p_script, 'GenericWindow', 'resizable=yes,scrollbars=yes,width=' +
		l_w + ',height=' + l_h);
}

function newDieWindow (p_title, p_image, p_w, p_h)
{
	var l_w = p_w + 30;
	var l_h = p_h + 50;

	PicWindow = open ('', 'CPU_World_Die_Zoom', 'resizable=yes,scrollbars=yes,width=' +
		l_w + ',height=' + l_h);
	PicWindow.document.write('<HTML><HEAD><TITLE>' + p_title + '</TITLE></HEAD>');
	PicWindow.document.write('<BODY><link rel="stylesheet" href="/cpu_world.css" type="text/css"><TABLE WIDTH="100%" BORDER=0 CELLPADDING=0 CELLSPACING=0 CLASS="CW_cpudata"><TR BGCOLOR="#C0C0C0"><TD ALIGN=CENTER><B>' + p_title + '</B></TR>');
	PicWindow.document.write('<TR><TD ALIGN=CENTER STYLE="border-style: solid; border-width: 1"><IMG SRC="' + p_image + '" ALT="' + p_title + '"></TR>');
	PicWindow.document.write('<TR><TD ALIGN=RIGHT BGCOLOR="#404040"><FONT SIZE=1 COLOR="#FFFFFF">(c) Copyright 2005, 2006 <A HREF="/info/die_pictures.html">William Blair</A></FONT>&nbsp;</TR>');
	PicWindow.document.write('</TABLE></BODY></HTML>');
	PicWindow.document.close();
}

