// Creates a new window for displaying an image
// Disables the right mouse click button
function show_photo( pFileName, pTitle, xSize, ySize)
{
// specify window paramaters
	photoWin = window.open( "", "image", "width=" + xSize + ", height=" + ySize + ", left=20, top=20");

// write content to window
	photoWin.document.writeln('<html><head><title>' + pTitle + '</title></head>');
	photoWin.document.writeln('<body bgcolor=#ffffff text=#000000 topmargin="0" leftmargin="0">');

	photoWin.document.writeln('<script language="JavaScript">');
	photoWin.document.writeln('<!--');
	photoWin.document.writeln('var message="";');
	photoWin.document.writeln('function clickIE()');
	photoWin.document.writeln('{if (document.all) {(message);return false;}}');
	photoWin.document.writeln('function clickNS(e)');
	photoWin.document.writeln('{if (document.layers||(document.getElementById&&!document.all))');
	photoWin.document.writeln('{if (e.which==2||e.which==3) {(message);return false;}}}');
	photoWin.document.writeln('if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}');
	photoWin.document.writeln('else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}');
	photoWin.document.writeln('document.oncontextmenu=new Function("return false");');
	photoWin.document.writeln('//-->');
	photoWin.document.writeln('</scr' + 'ipt>');

	photoWin.document.writeln('<center>');
	photoWin.document.writeln('<img src="' + pFileName + '">');

	photoWin.document.writeln('</body></html>');
	photoWin.document.close();
}

var tim;
function DoChangeStatus(text)
{
	tim=setTimeout('window.status="' + text + '";clearTimeout(tim);',100);
}

var message="";
function clickIE()
{
	if (document.all)
	{
		(message);return false;
	}
}

function clickNS(e)
{
	if (document.layers||(document.getElementById&&!document.all))
	{
		if (e.which==2||e.which==3)
		{
			(message);return false;
		}
	}
}

if (document.layers)
{
	document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;
}
else
{
	document.onmouseup=clickNS;document.oncontextmenu=clickIE;
}
document.oncontextmenu=new Function("return false");

window.defaultStatus = "Welcome to my Cobra Page"

var bgcolor="#FFFFFF";   // make any color you want
var urla = "fake-snake"; //your email address here
var urlb = "@";          //your email address here
var urlc = ".co.uk";     //your email address here
var urld = "enquiries";  //your email address here
var subj = "My Viper build page";
var hdg1 = '<div align="center"><center><TABLE Border=0 CELLPADDING="2"><TR>';
var hdg2 = '</TR></TABLE></div>';
var hdg3 = '<TD ALIGN="center">';
var hdg4 = '<A ID="mail" onmouseover="window.status=\' '+ 'Click here to e-Mail me\'; return true" onmouseout="window.status=document.title" HREF="';
	  
function  emailTo()
{
	output = hdg1;
	output += hdg3 + hdg4 + "mailto:" + urld +  urlb + urla + urlc + '?subject=' + subj + '\">' + "e-Mail me</A></TD>";
	output += hdg2;
	return output;
}

