function SwapImg(idx, img) 
{
   document.images[idx].src = img;
}

		function fix_links(){

		var all_links = document.getElementsByTagName( 'a' );

		for( var i=0; i<all_links.length; ++i ){
			all_links[i].onfocus = function(){ if( this.blur )this.blur(); }
		}

		var msrp = ( document.getElementById( 'msrp' ) != null )? document.getElementById( 'msrp' ) : null;
		if( msrp ){
			if( msrp.innerHTML.indexOf( '.' ) == -1 ){
				msrp.innerHTML += '.00';
			}
		}
	}

var goPopX = (screen.width/2)-250;
var goPopY = (screen.height/2)-250;
var loc = "left=" +goPopX+ ",top=" +goPopY;

function goPop(){
	goPopWindow = window.open("share/index.php?prod_code=&mvte:product:code;&prod_name=&mvte:product:name;","","scrollbars=no,resizable=yes,width=500,height=500,"+loc);
}