function goToCartmanager(form)
{
 //var time = new Date();
  //form.action = form.action + "?time=" + time.getTime();
  //form.target = window.opener.name;
  form.submit();
  //window.opener.location = window.opener.location + "?time=" + time.getTime();						
  //window.close();
}
function openflash(pid){
  var newWindow = window.open("","flash","width=1000,Height=550,top=0,left=0,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,status=yes"); 
   newWindow.document.clear();  
   newWindow.document.writeln("<html>");
   newWindow.document.writeln("<head>");
   newWindow.document.writeln("<title>flash</title>");
   newWindow.document.writeln("</head>");
   newWindow.document.writeln("<body>");
   newWindow.document.writeln("<object id='flash' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='' width='400' height='400'>");
   newWindow.document.writeln("<param name='movie' value='../../../Boot/ProductMgmtResourceServlet?ProductID="+pid+"&amp;AttrName=BigImage'/>");
   newWindow.document.writeln("<param name='quality' value='high'/>");
   newWindow.document.writeln("</object>");
   newWindow.document.writeln("</body>");
   newWindow.document.writeln("</html>");
   newWindow.document.close();
}
