var dc = false;

if(document.images)
{
	preload = new Image();
	image_url = new Array();

	image_url[0] = "http://www.ishidden.net/img/arrow.gif";
	image_url[1] = "http://www.ishidden.net/img/menu.gif";
	image_url[2] = "http://www.ishidden.net/img/exit.gif";
	image_url[3] = "http://www.ishidden.net/img/exit_hover.gif";
	image_url[4] = "http://www.ishidden.net/img/go.gif";
	image_url[5] = "http://www.ishidden.net/img/go_hover.gif";
	image_url[6] = "http://www.ishidden.net/img/ok.gif";
	image_url[7] = "http://www.ishidden.net/img/ok_hover.gif";
	image_url[8] = "http://www.ishidden.net/img/question.gif";
	image_url[9] = "http://www.ishidden.net/img/question_hover.gif";
	image_url[10] = "http://www.ishidden.net/img/refresh.gif";
	image_url[11] = "http://www.ishidden.net/img/refresh_hover.gif";
	image_url[12] = "http://www.ishidden.net/img/person.gif";
	image_url[13] = "http://www.ishidden.net/img/person_hover.gif";	
	
	var i = 0;
	for(i = 0; i <= 13; i++) 
		preload.src = image_url[i];
}

function Confirm()
{
	if(!confirm("Are you sure?"))
		dc = true;
}

function DeleteCheck()
{
	if(dc)
	{
		dc = false;
		return false;
	}
	return true;
}