function popupWindow(url,title) {
PreView = window.open("popup.php?myimg="+url+"&mytitle="+title,
"Preview",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width=200,height=500,screenX=500,screenY=500,top=150,left=150,margin-left:10px;margin-bottom:10px;");
}
  
function openPhoto (fname)
{
  checkWin = window.open("about:blank", "check", 'width=300,height=300,scrollbars=no,left=400,top=300');
  checkWin.document.write([
	"<html>",
	"<head>",
	"<title></title>",
	"</head>",
	"<body style='margin:0px;padding:0px;'>",
	"<img id='myImage' border='0'>",
	"<script>",
	"document.getElementById('myImage').src='"+fname+"';",
	"<\/script>",
	"</body>",
	"</html>"
	].join(''));
  checkWin.document.close();
}
function openPhoto2 (fname)
{
  checkWin = window.open("about:blank", "check", 'width=160,height=240,scrollbars=no');
  checkWin.document.write([
	"<html>",
	"<head>",
	"<title></title>",
	"</head>",
	"<body style='margin:0px;padding:0px;'>",
	"<img id='myImage' border='0'>",
	"<script>",
	"document.getElementById('myImage').src='"+fname+"';",
	"<\/script>",
	"</body>",
	"</html>"
	].join(''));
  checkWin.document.close();
}

function openWindow (fname)
{
  checkWin = window.open(fname, "check", 'width=300, height=300, scrollbars=yes');
} 

