function OpenWin(newwin, width, height) {
	w = width, h = height;
	windowheight = ((screen.height / 2) - (h / 2));
	windowwidth = ((screen.width / 2) - (w / 2));
	windowparams = "height=" + h +",width=" + w + ",scrollbars=0,top=" + windowheight + ",left=" + windowwidth
	window.open(newwin, "1", windowparams);
}

function OpenRegWin(newwin){
	window.open(newwin);
}

function call_fc_flash(arg1, arg2) {
	if(typeof(fc_flash) == "function"){
		fc_flash(arg1, arg2);
	}
}
function debug(message) {
	alert(message);
}

function setWindow () {
	/*
	window.resizeTo(screen.width,screen.height);
	*/
}

function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function jumpMenu(targ,selObj,restore){
	startopen = window.open("","","");
	eval("startopen.location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function OpenNewsletter(params) {
	window.open("http://www.ktmnewsletter.com", "_blank");
}