// JavaScript Document
function popUP(prodID,catID,funcName,divHeight,divWidth) {
	$("#popUp").empty();
	var winHeight = divHeight;
	var winWidth = divWidth;
	$('#popUp').modal({
		closeHTML: "<div class='popUpClose'></div>",
		opacity:60,
		overlayCss:{
			backgroundColor:"#000"
		},
	containerCss:{
		height:winHeight,
		width:winWidth,
		border: '1px solid #000',
		'-moz-border-radius': 8,
		'-webkit-border-radius': 8,
		'-msie-border-radius': 8,
		backgroundColor:"#FFF"
	},
	overlayClose:true,
	onOpen: $("#popUp").delay(200).load("/js/"+funcName+".php", { 'prodID':prodID, 'catID':catID  } ),
	//onClose: updCart()
	});
}

