function open_win_cart(url,width,height,designid,productid,view) {
	  
 var url = url+'?DID='+designid+'&PID='+productid+'&view='+view;

 var newwindow=window.open(url,'name','"height='+height+',width='+width+',scrollbars=0"');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popup(url,width,height) {
		 
window.open(url,'Fibers','width='+width+',height='+height);

}

