// JavaScript Document
function Open(page,horz,vert) {

OpenWin = window.open(page,'screensvr','toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=0,resizable=1,width=' + horz + ',height=' + vert );

}

var imagename, link,horz,vert;

flink = "javascript:window.close();"

function Photo(fimagename,fhorz,fvert) {
	photowindow = window.open('photo.html', 'photowindow','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=' + fhorz + ',height=' + fvert );

imagename = fimagename;
link = flink;
horz = fhorz;
vert = fvert;

}

