//******************************************
//JavaScript file for AGD Guitars Web Site
//Copyright © Paul Delaney
//******************************************

function confirmSubmit(msg)
	{
	var agree = confirm(msg);
	if (agree)
		return true;
	else
		return false;
	}

function popup1(url,width,height) //popup window with toolbar
	{
	settings = "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,"+
	"scrollbars=yes,resizable=yes,top=10,left=10,width="+width+",height="+height;
	NewWindow = window.open(url,"",settings);
	}

function popup2(url,width,height) //popup window without toolbar
	{
	settings = "toolbar=no,location=no,directories=no,status=no,menubar=no,"+
	"scrollbars=no,resizable=yes,top=10,left=10,width="+width+",height="+height;
	NewWindow = window.open(url,"",settings);
	}

