/* ****FUNCTIONS TO OPEN NEW WINDOWS FROM LARGE IMAGE**** */
function newWindowOne() {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('..\/displaywindow\/jewelry\/silver-neckwhole.html', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=860,height=840');");
}
function newWindowTwo() {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('..\/displaywindow\/jewelry\/silver-neckcloseup.html', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=860,height=840');");
}
function newWindowThree() {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('..\/displaywindow\/jewelry\/silver-neckdetail.html', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=860,height=840');");
}
function newWindowFour() {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('..\/displaywindow\/jewelry\/silver-neckclasp.html', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=860,height=840');");
}

/* ****FUNCTIONS TO SWAP SMALLER FOR LARGER IMAGES**** */
function changeToOne(){
	document.getElementById('photoswap').innerHTML = "<a href='javascript:newWindowOne()' style='border: none;'><img src='..\/images\/jewelry\/silverneck\/sil-neckwhole250.jpg' height='167' width='250' style='border:none;' alt='View large image of necklace and bracelet in new window'></a>";
}
function changeToTwo(){
	document.getElementById('photoswap').innerHTML = "<a href='javascript:newWindowTwo()' style='border:none;'><img src='..\/images\/jewelry\/silverneck\/sil-neckcloseup250.jpg' height='167' width='250' style='border:none;' alt='View large image of clasp in new window'></a>";
}
function changeToThree(){
	document.getElementById('photoswap').innerHTML = "<a href='javascript:newWindowThree()'><img src='..\/images\/jewelry\/silverneck\/sil-neckdetail250.jpg' height='167' width='250' style='border:none;' alt='View large image of the gems in new window'></a>";
}
function changeToFour(){
	document.getElementById('photoswap').innerHTML = "<a href='javascript:newWindowFour()'><img src='..\/images\/jewelry\/silverneck\/sil-neckclasp250.jpg' height='167' width='250' style='border:none;' alt='View large image of the necklace and bracelet'></a>";
}

