function popwindow(cTitle,cImage,cText)
{
	oWin = window.open('','popWin','height=800,width=700,resizable=yes,scrollbars=yes');
//	oWin.document.open('text/html','replace');
	oWin.document.writeln('<html><head><title>'+cTitle+'</title><link rel="stylesheet" type="text/css" href="http://www.monstermattress.com/Main.css"></head><body><table cellpadding=5 cellspacing=0 border=0><tr><td align=center><img src="Images/'+cImage+'" alt="'+cTitle+'" border=0></td></tr><tr><td class=ProdHighs>'+cText+'</td></tr></table></body></html>');
	oWin.focus();
}
