window.name= "main";

function WinOpen(whatwin) 

	{
	win=open(whatwin,"popup","status=yes,scrollbars=yes,resizable=yes,toolbar=no,directories=no,menubar=no,width=591,height=550,screenx=250,screeny=0,left=250,top=0"); 
	win.focus();
	}

function formHandler(form, selectObj)
{
	var URL = selectObj.options[document.one.one.selectedIndex].value;
	if(URL.length > 0)
	{
		parent.frames["content"].location.href = URL;
		//parent.frames["menu"].location.href = URL;
	}
}

function RelocateFrames(menuSrc, contentSrc)
{

	if(menuSrc != null)
	{
		window.frames["menu"].location.href = menuSrc;
	}
	
	if(contentSrc != null)
	{
		window.frames["content"].location.href = contentSrc;
	}
	
}
function openNewWindow()
{
	window.open("http://localhost/rop/shoppinglist.aspx");
}

function relocateFrames2(frmObj, selectObj)
{
	var arr = selectObj.options[selectObj.selectedIndex].value.split(",");
	
	if(arr[2] != "null")
	{
		// goto catalog
		window.location.href = arr[2];
		return;
	}			
	
	if(arr[0] != "null")
	{
		window.frames["menu"].location.href = arr[0];
	}
	
	if(arr[1] != "null")
	{
		window.frames["content"].location.href = arr[1];
	}
	
}

function RelocateAndPop(page, story)
{
	if(page != "null")
	{
		window.frames["content"].location.href = page;
	}

	if(story != "null")
	{
		WinOpen( story );
	}
}