// JavaScript Document
function openwindow()
{
window.open("/CallButton/callRequest.htm","CallRequest","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=541, height=300")
}

function ValidateWH()
{
	var width
	var height
	var counter
	
	width    = document.CalcuWHP.width.value
	height   = document.CalcuWHP.height.value
	
	if(width == "")
		{
			alert("Please enter a valid number for the width field")
			counter = 1
		    return false
		}
	else if(height == "")		
		{
			alert("Please enter a valid number for the height field")
			return false
		}
	else
		return true
}

function openwindowB(url)
{
 window.open(url, "ProductDetail", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=10,left=10,width=500,height=600");
}

function surfto(form) {
        var myindex=form.dest.selectedIndex
        window.open(form.dest.options[myindex].value,"main","");
}
