function openWindow(url, n, w, h, s){
	if (typeof n=="undefined") { n = "popup"}
	if (typeof w=="undefined") { w = 670; }
	if (typeof h=="undefined") { h = 450; }
	if (typeof s=="undefined") { s = 'yes'; }
	var strFeatures = 'width=' + w + ', height=' + h + ', status=0, menubar=0, toolbar=0, scrollbars=' + s + ',resizeable=no, dialog=1';
	var winX = window.open(url, n, strFeatures);
	winX.focus();
}

