
/*This page holds javascript code for image displaying*/

/*     SOPHIAKNOWS: JAVASCRIPT       */
/*       IMAGE ROLLOVER/SWAP         */
/*  Created:  2002-01-15             */
/*  Issued:   2002-01-15             */
/*  Modified: 2004-12-17             */
/*  Copyright (c) 2001-2004          */
/*  Tony Pisarra, SophiaKnows        */
// ROLLOVER: SWAP IMAGE

function swap_image(n,s) {
    document.images[n].src=s;
    var argv=swap_image.arguments;
    if(argv[2] && argv[3] && document.getElementById) {
        element=document.getElementById(argv[2]);
        element.innerHTML=argv[3];
        }
    }

/*Switches the full image link when image is swapped*/
function linkfull(n){
    document.getElementById('linkfull').href='javascript:fullimage(\''+n+'\');';
}


/*Sets the window size and content for full size*/
var newwindow;
function fullimage(url)
{
	newwindow=window.open(url,'name','height=510,width=520');
	if (window.focus) {newwindow.focus()}
}
