// JavaScript Document
function openWin(url) {
	window.open(url);
	return false;
}
function openNewWin(url,name,width,height){
	var n;
	var w;
	var h;
	
	if (width==undefined) {
		n = "subwin";
	} else {
		n = name;
	}
	
	if (width==undefined) {
		w = "400px";
	} else {
		w = width;
	}
	
	if (height==undefined) {
		h = "400px";
	} else {
		h = height;
	}
	
	window.open(url, n, 'width='+ w+ ',height='+ h+ ',toolbar=no,location=no,status=no,scrollbars=no');
	
	return false;
}

