//------------------------------------------
// Invision Power Board v2.1
// POLL JS File
// (c) 2005 Invision Power Services, Inc.
//
// http://www.invisionboard.com
// ASSUMES 'ipb_global.php' as been loaded
//------------------------------------------

/*--------------------------------------------*/
// INIT
/*--------------------------------------------*/

//-------------------------------
// DIV & FORM id names
//-------------------------------

function funny(){
	alert("Kuidas soovite :(");
}

function confirmation(url1, url2) {
	var where_to = confirm("Olete kindel, et soovite seda toodet kustudata?");
	
	if (where_to == true) {
		window.location=url1;
	} else {
		funny();
		window.location=url2;
	}
}