
function cssHorScrolls(val){
document.body.style.overflowX = val;
}

function PrintJob(url) {
	var newWindow;
	var props = 'scrollBars=yes,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=510,height=450';
	newWindow = window.open(url , 'PrintJob', props);
	newWindow.focus();
}

function cartpopup(breed,hoog,url) {
	var props = "toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=no,status=no,left=0,top=0,xpos=0,ypos=0";
	var windo;
	windo = window.open(url, 'Product',"width=" + breed + ",height=" + hoog + "," + props);
	windo.resizeTo(breed,hoog);
	windo.focus();
}

function imgpopup(breed,hoog,url) {
	var props = "toolbar=no,menubar=no,scrollbars=no,location=no,resizable=no,status=no,left=0,top=0,xpos=0,ypos=0";
	var windo;
	windo = window.open(url, 'Picture',"width=" + breed + ",height=" + hoog + "," + props);
	windo.resizeTo(breed,hoog);
	windo.focus();
}

function JumpMenu(targ,selObj,restore) {
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function breed() {
	var breed = screen.width - 175;
	document.write(breed);
}
