<!-- Begin

function NewWin( filename )
{
	var props = "menubar=yes, toolbar=no, width=775, height=575";
	var title = "Savings Deal";
  
	window.open(filename, null, props);
	
	return false;
}

//  End -->