/******************************************************************************
*
*  website: www.samuipureshore.coms
*
* purpose: javascript file to handle the pop up windows for large images
*
* developer: Mark Heslop  (develop@theheslops.plus.com)
*
* date: 20/01/2006
*
*******************************************************************************/


//function to call popup windows, with a predefined screen size.
// each function will specify the dimensions
function popUp400x400(pPage) {
 window.open(pPage,'popWin400','resizeable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,directories=no,width=400,height=400,top=80,left=50');
 }

function popUp500x500(pPage) {
 window.open(pPage,'popWin500','resizeable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,directories=no,width=500,height=500,top=80,left=50');
 }

function popUp600x600(pPage) {
 window.open(pPage,'popWin600','resizeable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,directories=no,width=600,height=600,top=80,left=50');
 }

function popUp700x550(pPage) {
 window.open(pPage,'popWin700a','resizeable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,directories=no,width=700,height=550,top=80,left=50');
 }
function popUp700x700(pPage) {
 window.open(pPage,'popWin700b','resizeable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,directories=no,width=700,height=700,top=80,left=50');
 }

function popUp800x800(pPage) {
 window.open(pPage,'popWin800','resizeable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,directories=no,width=800,height=800,top=80,left=50');
 }
