function form_submit(form_name) {
	document.getElementById(form_name).submit();
}

function __confirm($message,$path) {
	if(confirm($message))  	{
		location=$path;
	}
}

function open_image_window(url) {
	newWin=window.open(url,"newWindow","menubar=no,status=no,location=no,width=50,height=50,toolbar=no,scrollbars=auto,resizable=yes,left=5,top=5");
}

function open_new_window(url,width,height) {
	newWin=window.open(url,"newWindow","menubar=no,status=no,location=no,width="+width+",height="+height+",toolbar=no,scrollbars=auto,resizable=yes,left=5,top=5");	
}

function open_new_window(mypage,w,h) {
if(screen.width){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
}else{winl = 0;wint =0;}
if (winl < 0) winl = 0;
if (wint < 0) wint = 0;

var settings = 'height=' + h + ',';
settings += 'width=' + w + ',';
settings += 'top=' + wint + ',';
settings += 'left=' + winl + ',';
settings += 'menubar=no,status=no,location=no,toolbar=no,scrollbars=yes,resizable=yes';
win = window.open(mypage,"newWindow",settings);
win.window.focus();
}