function writeWindow(city,theImg,desiredX,desiredY){

var width = 640;
var height = 480;

if(desiredX)width = desiredX;
if(desiredY)height = desiredY;

var n=new Date();
var x=window.open('', 'Travel', "width="+width+",height="+height);
x.document.write('<html><head><title>Travel Photo</title></head><body style="padding: 0em; margin: 0px; background: black; "><p><img src="partyReview/'+city+'/'+theImg+'.jpg"></body></html>');
x.focus();
}


