function bigimage(image,title,wid,hgt){
sw=(screen.width-wid)/2;
sh=(screen.height-hgt)/2;
newwin=window.open('','newwin','width='+wid+',height='+hgt+',scrollbars=0,menubars=0,toolbars=0,loca tion=0,directories=0,status=0,top='+sh+',left='+sw+'');
newwin.document.open();
newwin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"\n');
newwin.document.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
newwin.document.write('\n<html>\n<head>\n');
newwin.document.write('<title>'+title+'</title>\n');
newwin.document.write('</head>');
newwin.document.write('<body style="margin:0;padding:0">\n<img src="'+image+'" width="'+wid+'" height="'+hgt+'" />');
newwin.document.write('\n</body></html>');
newwin.document.close();
newwin.focus();
}
function seemovie(wid,hgt){
sw=(screen.width-wid)/2;
sh=(screen.height-hgt)/2;
newwin=window.open('','newwin','width='+wid+',height='+hgt+',scrollbars=0,menubars=0,toolbars=0,loca tion=0,directories=0,status=0,top='+sh+',left='+sw+'');
newwin.document.open();
newwin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"\n');
newwin.document.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
newwin.document.write('\n<html>\n<head>\n');
newwin.document.write('<title>Byala Beach Resort</title>\n');
newwin.document.write('</head>');
newwin.document.write('<body style="margin:0;padding:0;background-color:#eeeeee">\n');
newwin.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+wid+'" height="'+hgt+'" id="byala_beach_resort" align="middle">');
newwin.document.write('<param name="allowScriptAccess" value="sameDomain" />');
newwin.document.write('<param name="movie" value="flash_mov/byala_beach_resort.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#eeeeee" /><embed src="flash_mov/byala_beach_resort.swf" quality="high" bgcolor="#eeeeee" width="'+wid+'" height="'+hgt+'" name="byala_beach_resort" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
newwin.document.write('</object>\n');
newwin.document.write('\n</body></html>');
newwin.document.close();
newwin.focus();
}