// JavaScript Document
function menuOnMouseOver(obj){
	obj.style.backgroundImage="url(comman/images/overbg.gif)"
	obj.style.color="#cd0005"
}
function menuOnMouseOut(obj){
	obj.style.backgroundImage="url()"
	obj.style.color="#333"
}
function ResizeIMG(i,w,h){
	var MaxW=w; 
	var MaxH=h; 
	var o=new Image();
	o.src=i.src;
	var w=o.width;
	var h=o.height;
	var t;
	if (w>MaxW){
		t=MaxW;
	}else{
		t=w;
	}
	if ((h*t/w)>MaxH){
		i.height=MaxH;
		i.width=MaxH/h*w;
	}else{
		i.width=t;
		i.height=t/w*h;
	}
}
function goURL(val){
window.location.href= "ProductDetails.asp?k=allsinks&viewtype="+val;	
}
