	<!--
	var width,height
	var image,ext
	var cond1,cond2
	
	function transferview(image,width,height) {
	    if (width==0) cond1=" "
	        else (cond1 = "width=" + (width + 20) + "");
	    if (height==0) (cond2=" ");
	        else (cond2 = "height=" + (height + 60) + "");
	
	    var s1 ="<title>&copy;All Kinds of Blinds</title><body topmargin='0' leftmargin='0'>"
	    var s15="<div align='center'>"
	    var s2 ="<img src='" + image + "' border=0>"
	    var s3 ="<span style='font-family : trebuchet ms, sans-serif; font-size : 10px; font-style : normal; font-weight : normal; text-decoration : none; color : #333333;'><br><br><a href='javascript:window.close()'>:: CLOSE WINDOW</a><br><br></span>"
	    var s4 ="</div></body>"
	
	    ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars=yes,left=25,top=25,resizable=yes,menubar=no,"+cond1+","+cond2);
	    ImageWindow.document.write(s1+s15+s2+s3+s4)
	    ImageWindow.document.close()
	
	}
	//-->