
window.addEvent('domready', function() {
	new jpForm('frmInstantEnquiry', {
		autoClear: true,
		valuesToConsiderNull: ['Name', 'Email', 'Phone', 'Comments'],
		inlineErrorMsg: false,
		autoFocus: false
	});
	
	new jpForm('EnquiryForm', {
		inlineErrorMsg: false,
		autoFocus: false
	});
});



function popup(url) {
	params  = 'width='+screen.width;
	params += ', height='+screen.height;
	params += ', top=0, left=0'
	params += ', fullscreen=yes';
	
	newwin=window.open(url,'windowname4', params);
	if (window.focus) {newwin.focus()}
	return false;
}

function popupFull(url) {
 params  = 'width='+screen.width;
 params += ', height='+screen.height;
 params += ', top=0, left=0'
 params += ', fullscreen=yes';

 newwin=window.open(url,'viewBrochure', params);
 if (window.focus) {newwin.focus()}
 return false;
}

