var newWindow;

myImage1 = new Image();
myImage1.src = "main.jpg";

myImage2 = new Image();
myImage2.src = "zoom.jpg";

myImage3 = new Image();
myImage3.src = "custommain.jpg";


function zoom() {
	document.mainimg.src = myImage2.src;
}

function customzoom() {
	document.mainimg.src = myImage3.src;
}
function customzoom2(Name) {
	document.mainimg.src = Name;
}
function restore() {
	document.mainimg.src = myImage1.src;
}

function changeImage(imageName) {
	document.image.src = imageName;
}

function imageWin(v_img) {
	newWindow=window.open("", "mainLarge", "resizable=no, scrollbars=no, height=500, width=700, top=10, left=10");
	writeToWindow(v_img);

        if (parseInt(navigator.appVersion) >= 4) { newWindow.window.focus(); }

}

function writeToWindow(v_img) {
	var Content = "<HTML><HEAD><TITLE>iCatching Cards</TITLE></HEAD>\n";
	Content += "<body style=\" padding : 0 0 0 0; margin: 0 0 0 0; background:#E0E0E0;\"> " + 
            "<table width=\"100%\" height=\"100%\" ><TR><TD height=\"100%\" valign=\"center\" "+
            "align=\"center\">\n<IMG style=\"border : 2px solid silver;\" " +
            "src="+v_img+" >\n</TD></TR></TABLE></body></HTML>";
	newWindow.document.write(Content);
	newWindow.document.close();
}
