function getEnquiry(url,winWidth,winHeight) {
	var posX = Math.round((screen.availWidth - (winWidth + 12)) / 2);
	var posY = Math.round((screen.availHeight - (winHeight + 31)) / 2);
	var setting = "width="+winWidth+",height="+winHeight+",location=no,scrollbars=no,resizable=no,menubar=no,toolbar=no,status=no,screenX="+posX+",screenY="+posY+",left="+posX+",top="+posY;
	window.open(url,'enquiryWin',setting);
}