


var mynewwindow;

function myNewWindow( source, height)
{
	mynewwindow=window.open(source,'_blank','height=' + ( height + 40 ) + ', width=390, menubar=no, scrollbars=yes');
	// mynewwindow=window.open(source,'_blank','height=800, width=720, menubar=no, scrollbars=yes, resizable=yes');
}

function myNewResizableWindow( source, width, height)
{
	mynewwindow=window.open(source,'_blank','height=' + ( height + 40 ) + ', width=' + ( width + 40 ) + ', menubar=no, scrollbars=yes, resizable=yes');
	// mynewwindow=window.open(source,'_blank','height=800, width=720, menubar=no, scrollbars=yes, resizable=yes'); 
}

function Enquiry()
{
	myNewWindow( '/EnquiryForm.php', 510 );
}

function FilledEnquiry( EnquiryText)
{
	myNewWindow( 'EnquiryForm.php?EnquiryText=' + EnquiryText, 310 );
}

function ArtEnquiry()
{
	myNewWindow( 'ArtEnquiryForm.htm', 510 );
}

function EmailAFriend()
{
	myNewWindow( 'EmailAFriend.htm', 502 );
}

function KeepMeUpdated()
{
	myNewWindow( 'KeepMeUpdated.htm', 462 );
}




