
function setFabric (fabricName, fabricValue)
{
	document.forms[0].fabricField.value = fabricName;
	document.forms[0].fabricValue.value=fabricValue;
	document.forms[0].submit();
}

function openPopupPage(pageName) 
{
	var dialogWindow = window.open(pageName,'PopupWindow','width=500,height=600,resizable=yes,scrollbars=yes,toolbars=no,status=yes,menubars=no');
	// if the focus method exists, call it.	                
	if (dialogWindow.focus) 
	{
		dialogWindow.focus();
	}
	return dialogWindow;
}