<!--
function openWin(url) {

	var yes = 1;
var no = 0;

var menubar = yes;      // The File, Edit, View Menus
var scrollbars =yes;   // Horizontal and vertical scrollbars
var locationbar = yes;  // The location box with the site URL
var directories = no;  // the "What's New", "What Cool" links
var resizable = yes;    // Can the window be resized?
var statusbar = yes;    // Status bar (with "Document: Done")
var toolbar = yes;      // Back, Forward, Home, Stop toolbar

windowprops = "width=" + (screen.width-30) + ",height=" + (screen.height-150) + ",top=0,left=0";

windowprops += 
(menubar ? ",menubar" : "") +
(scrollbars ? ",scrollbars" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directories" : "") +
(resizable ? ",resizable" : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");
	
	var win_new = window.open(url,'win_kng',windowprops);
	win_new.focus();
	
}	

function openWinPic(url) {

	var yes = 1;
var no = 0;

var menubar = no;      // The File, Edit, View Menus
var scrollbars =yes;   // Horizontal and vertical scrollbars
var locationbar = no;  // The location box with the site URL
var directories = no;  // the "What's New", "What Cool" links
var resizable = yes;    // Can the window be resized?
var statusbar = no;    // Status bar (with "Document: Done")
var toolbar = no;      // Back, Forward, Home, Stop toolbar

windowprops = "width=" + (screen.width-30) + ",height=" + (screen.height-150) + ",top=0,left=0";

windowprops += 
(menubar ? ",menubar" : "") +
(scrollbars ? ",scrollbars" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directories" : "") +
(resizable ? ",resizable" : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");
	
	var pic_new = window.open(url,'bare_win',windowprops);
	pic_new.focus();
	
}	

function opensmWin(url) {
	var win_new = window.open(url,'win_wcp','scrollbars,width=294,height=400,resizable');
	win_new.focus();
	
}	

function openintWin(url) {
	var win_new = window.open(url,'win_int','scrollbars,width=500,height=400,resizable');
	win_new.focus();
	
}	

function openbanWin(url) {
	var win_new = window.open(url,'win_npb','width=306,height=85,resizable');
	win_new.focus();
	
}	

function openManWin(url) {
	var win_new = window.open(url,'win_wcp','scrollbars,width=363,height=500,resizable');
	win_new.focus();
	
}

//-->

