var popUp; 

function SendNewsForm( productID)
{
	popUp = window.open('SendNewsForm.aspx?formname=' + document.forms[0].name +  '&productID=' + productID, 
		'popupcal', 
		'width=500,height=200,left=100,top=100');
}

function OpenProductDetails(filePath, itemID)
{
window.open(filePath + itemID, '_blank',
		'scrollbars=yes,width=700,height=600,left=1,top=1', 'true' );
}


function openChild(_file,_width,_height,_top,_left)
{
   winAtts='width='+ _width + ', height=' + _height + ', toolbar=no, directories=no, top=' + _top + ', left=' + _left ;
   myChild = window.open(_file,"child",winAtts);
}

function SetDate(formName, id, newDate, postBack)
{
	eval('var theform = document.' + formName + ';');
	popUp.close();
	theform.elements[id].value = newDate;
	if (postBack)
		__doPostBack(id,'');
}
		
function CloseMe()
{
eval('var theform = document.' + formName + ';');
	popUp.close();
	
}		

function Print()
{
	window.print();
}

