function showCalendar(id)
{
	var date = showModalDialog("../javascript/popup_calendar.htm", "", "help: no; status: no; scroll: no;");
	if (date)
	{
		eval(id).value=date;
	}
}
function image_open(image_loc,img)
{
  HTML = "<html><title>Zoom out image</title><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+30);window.moveTo(parseInt(window.screen.availWidth)/2-parseInt(document.load_image.width+10)/2,parseInt(window.screen.availHeight)/2-parseInt(document.load_image.height+30)/2)'></body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no;status=no');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
}
function saveFile(id,filename)
{
  if (!document.all)
  {
    alert("Xin lo^~i, tri`nh duye^.t web cu?a ba.n kho^ng cho phe'p thu+.c hie^.n thao ta'c na`y...");
    return;
  }
  var win = open("../product/product_viewsave.php?product_id="+id, "", "scrollbars,width=500,height=300");
  win.document.execCommand("SaveAs", null, filename);
  win.close();
}
function alertIt()
{
	var browser_type=navigator.appName
	var browser_version=navigator.appVersion
	bVer=browser_version.split(";");
	b=bVer[1].split(" ");
	v=parseFloat(b[2]);
	if (browser_type!="Microsoft Internet Explorer"||v<5.5)
		alert("Vui long su dung trinh duyet Internet Explorer - Phien ban 5.5 tro len!");
}
function doContact()
{
	checkTextField(document.tf.name.value,"Vui long nhap ten");
	checkTextField(document.tf.address.value,"Vui long nhap dia chi");
	checkTextField(document.tf.note.value,"Vui long nhap noi dung lien he");
	checkEmail(document.tf.email.value,"Vui long kiem tra Email");
	if(checkAll())
		document.tf.submit();
}
function doVideo()
{
	document.getElementById('video').innerHTML='<embed allowfullscreen="true" src="../includes/flvplayer.swf?autostart=false&thumbsinplaylist=true&overstretch=true&showdigits=true&showfsbutton=true&repeat=false&backcolor=0x86C630" width="240" height="180"></embed>';
}
function getScrY() {
  var offset = 0;
  if(window.pageYOffset)
    offset = window.pageYOffset;
  else if(document.documentElement && document.documentElement.scrollTop)
    offset = document.documentElement.scrollTop;
  else if(document.body && document.body.scrollTop)
    offset = document.body.scrollTop;
  return offset;
}
var ss_id=0;
function openW(file,id)
{
 	if(ss_id!=id || document.getElementById('ss').innerHTML=='')
 	{
		ss_id=id;
		document.getElementById('ss').innerHTML='';
		document.getElementById('ss').style.width='600px';
		document.getElementById('ss').style.top=getScrY();
		document.getElementById('ss').style.visibility='visible';	
		toggle_info(file,"ss");
	}
	else		
	{ 		
		document.getElementById('ss').innerHTML='';
		document.getElementById('ss').style.width='0px';
		document.getElementById('ss').style.visibility='hidden';
 	} 	
 	
 	//if(document.getElementById('ss').innerHTML=='')
 	//	document.getElementById('ss').style.width='0px';
 	//else	
}