function imageview(image,title,x,y) {
	
	var imagewindow;
	var sWidth;
	var sHeight;
	
	imagewindow = window.open("","Photo","width="+x+",height="+(y+20)+"");

	imagewindow.document.open();
	imagewindow.document.write("<HTML><HEAD><TITLE>Photo Window<\/TITLE>");
	imagewindow.document.write("<\/HEAD><BODY BGCOLOR=\"black\" onBlur=window.close() TOPMARGIN=\"0\" BOTTOMMARGIN=\"0\" LEFTMARGIN=\"0\" RIGHTMARGIN=\"0\"><P ALIGN=\"center\">");
	imagewindow.document.write("<IMG SRC="+image+"><BR><FONT COLOR=\"white\" SIZE=\"3\"><B>"+title+"<\/B><\/FONT><\/BODY><\/HTML>");
	imagewindow.document.close();

}

if (top.location == self.location) {

top.location.href = "http://www.rondestefano.com";

alert('Your browser has been redirected to the Ron DeStefano ONLINE! Home Page in order to view this site in its intended format.  If you experience any difficulty, close this window and visit www.rondestefano.com directly in a new browser window.  Thanks!')

}




