function OpWin(type,title,name,width,height)
{
	if (type == 'swf')
	{
		object = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'" codebase="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0">';
		object +=	'<param name="movie" value="'+name+'" />';
		object +=	'<param name="play" value="true" />';
		object +=	'<param name="loop" value="false" />';
		object +=	'<param name="quality" value="high" />';
		object +=	'<embed src="'+name+'" width="'+width+'" height="'+height+'" loop="false" quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" swliveconnect="true" />';
		object += '</object>';
	}
	else if (type == 'img')
	{
		object = '<img src="'+name+'" alt="'+name+'" title="'+name+'" style="width:'+width+'px;height:'+height+'px;" />';
	}
	var top=(screen.height-width)/2;
	var left=(screen.width-height)/2;
	
	w=open("",'image','top='+top+',left='+left+',width='+width+',height='+height+',toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<html><head><title>"+title+" - Nuxit</title></head>");
	w.document.write("<body style=\"margin:0;\">");
	w.document.write(object);
	w.document.write("</body></html>");
	w.document.close();
}