// JavaScript Document
function offs(){
a = document.form1.cid.value;
b = document.form1.nextp.value;
location.href = "./index.php?cid="+a+"&nextp="+b;
}
function SelectDate(Year,Month,Day)
{
Month	= Month + 100 + "0";
Day		= Day + 100 + "0";
window.location.replace("index.php" + "&re=1&date=" + Year + Month.substr(1,2) + Day.substr(1,2));
}
function Today()
{
window.location.replace("index.php?re=1");
}
function sale(){
window.open("sale.php","sale",'toolbar=no, location=no,scrollbars=yes, width=1020, height=750');
}
function saleA(a){
window.open("sale.php?mesid="+a,"sale",'toolbar=no, location=no,scrollbars=yes, width=1020, height=750');
}
function links(){
window.open("./link/","links",'toolbar=no, location=no,scrollbars=yes, width=850, height=720');
}

function flashText()
{
	textStatus = document.getElementById("myText").style.visibility;
	if (textStatus == "hidden") document.getElementById("myText").style.visibility = "visible";
		else document.getElementById("myText").style.visibility = "hidden";
	setTimeout("flashText()",1500);
}
