
var img_loop = 0;
var timeoutSeconds = 3;
var timeout = timeoutSeconds * 1000;

var image2_src, image2_height, image2_width;

function zoom_image( pSrc, pHeight, pWidth ) {
	window.open( 'zoom_image.asp?src=' + pSrc, null, 'height=' + pHeight + ',width=' + pWidth );
}

function zoom_image2() {
	window.open( 'zoom_image2.asp?src=' + image2_src, null, 'height=' + image2_height + ',width=' + image2_width );
}

function image2_reset( pSrc, pHeight, pWidth ) {
	image2_src = pSrc;
	image2_height = pHeight;
	image2_width = pWidth;
	document.images.image2.src = image2_src;
}

function body_onload() {
	window.setTimeout('img_contact_rotate();', timeout);	
}

function img_contact_rotate() {
	img_loop++;
	if( img_loop > 7 ) {
		img_loop = 0;
	}
	document.images.img_contact.src = 'img/img_contact_' + img_loop + '.jpg';
	window.setTimeout('img_contact_rotate();', timeout);	
}
