// JavaScript Document

var newwindow;

function popwindow(url,orientation){

	if(newwindow)
	{
		newwindow.close();
		
		if(orientation == 'pt')
		{
			newwindow = window.open('','Picture','height=720,width=500,resizable=no,location=no,titlebar=no,status=no,top=50,left=50,scrollbars=no');
			
		}
		else
		{
			newwindow = window.open('','Picture','height=550,width=720,resizable=no,location=no,titlebar=no,status=no,top=50,left=50,scrollbars=no');
			
		}
	
		
		if (window.focus) 
		{
			newwindow.focus();
		
		}
		
		newwindow.document.write('<html><head><title>Picture</title> <style type="text/css"> @import url(elephantstyle.css); </style> </head> <body>');
		newwindow.document.write('<table width="100%" height="100%"><tr><td id="galleryContainer">');
		newwindow.document.write('<span id="galleryText">Click on the image to close the window</span><br/>');
		newwindow.document.write('<a href="" onClick="window.close();">');
		newwindow.document.write('<img id="withBorders" src="'+ url +'"/>');
		newwindow.document.write('</a>');
		newwindow.document.write('<br/><span id="galleryHeading">ThaiElephantRestaurant.co.uk</span><br/>');
		newwindow.document.write("</td></tr></table></body></html>");
		
	}else
	{

		if(orientation == 'pt')
		{
			newwindow = window.open('','Picture','height=720,width=500,resizable=no,location=no,titlebar=no,status=no,top=10,left=10,scrollbars=yes');
			
		}
		else
		{
			newwindow = window.open('','Picture','height=550,width=720,resizable=no,location=no,titlebar=no,status=no,top=10,left=10,scrollbars=yes');
			
		}
	
		
		if (window.focus) 
		{
			newwindow.focus();
		
		}
		
		newwindow.document.write('<html><head><title>Picture</title> <style type="text/css"> @import url(elephantstyle.css); </style> </head> <body>');
		newwindow.document.write('<table width="100%" height="100%"><tr><td id="galleryContainer">');
		newwindow.document.write('<span id="galleryText">Click on the image to close the window</span><br/>');
		newwindow.document.write('<a href="" onClick="window.close();">');
		newwindow.document.write('<img id="withBorders" src="'+ url +'"/>');
		newwindow.document.write('</a>');
		newwindow.document.write('<br/><span id="galleryHeading">ThaiElephantRestaurant.co.uk</span><br/>');
		newwindow.document.write("</td></tr></table></body></html>");
	
	}
}
