/* ---------------------------
    Javascript Collection
    Orb Solutions - 09/04/05
    Paul O'Dowd
   --------------------------- */


function opennewwindow ()
{
    var newwindow;

    newwindow=window.open('nftc.htm','nftc','height=400,width=300 scrollbars=no');
    if (window.focus) {newwindow.focus()}
}

function opengallery ()
{
    var newgallery;

    newgallery=window.open('gallery/index.html','Gallery','height=600,width=750,scrollbars=no,location=no,resizable=yes,menubar=no');
    if (window.focus) {newgallery.focus()}
}

function SubmitCheck() 
{

	if (document.feedback.name.value.length == 0)
	{	
		alert("Please enter your name. ")
		document.feedback.name.focus()
		return false
	}
	
	if (document.feedback.email.value.length == 0)
	{	
		alert("Please enter your email address. ")
		document.feedback.email.focus()
		return false
	}
}