function winOpen(flnm,winname, w, h)
{
	var innerHtml = "<html><head><title>The Wedding Rock Shop</title><link rel=\"STYLESHEET\" href=\"twrs.css\" type=\"text/css\"></head>"
			innerHtml+="<body style=\"margin:0; background-image: url(\'images/"+flnm+"\');\">"
			innerHtml+="<table cellpadding=\"5\" style=\"height:100%;width:100%;\"><tr><td align=\"center\" valign=\"bottom\">"
			innerHtml+="<span class=\"button\" onClick=\"self.close();\" onmouseOver=\"this.style.textDecoration='underline';this.style.color='red';\""
			innerHtml+=" onMouseOut=\"this.style.textDecoration='';this.style.color='';\">"
			innerHtml+="Close</span></td></tr></table></body></html>"
	var newWin;
  newWin=window.open("about:blank",winname,"width=" +w + ",height=" + h);
  newWin.moveTo(50,50);
  newWin.document.write(innerHtml);
}
