function swaptile(newimage, newwidth, newheight){
	document.largepic.src = "/img/large/" + newimage;
	document.itemform.fullpic.value = newimage;
	document.itemform.fullwidth.value = newwidth;
	document.itemform.fullheight.value = newheight;
}

function swapfeatured(newimage){
	document.largepic.src = "/img/large/" + newimage;
}

function zoomin(){
	window.open("/inventory/zoom.cfm?src="+document.itemform.fullpic.value, "zoomin", "toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width="+document.itemform.fullwidth.value+",height="+document.itemform.fullheight.value);
}

function imagesrc(){
	return "http://24.46.99.49:99/img/full/" + document.itemform.fullpic.value;
}

function updatetrimprice(itemtrimprice){
	document.itemform.op4.value = itemtrimprice;
}

function updatetrimpricewholesale(itemtrimprice, formname){
	if(document.getElementById(formname).op6.value == ""){
		document.getElementById(formname).op4.value = document.getElementById(formname).backupprice.value;
	} else {
		document.getElementById(formname).op4.value = itemtrimprice;	
	}
}

function enlargetrim(id){
	window.open("/login/bigtrim.cfm?id="+id, "bigtrim", "toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=no,width=380,height=335");
}