//
// scripts.js
// United Party System
// (c) Morten Daniel Fornes
//

function yn(msg,url)
{
	var a=confirm(msg);
	if (a) document.location=url;
}

