var pw;
var pb;
var px;
var p;
var newDesintation;

function popup2( anc, url ) {
	newDestination = url + "#" + anc;
	setTimeout("populatePopup(newDestination)", 100);
}

function populatePopup( destination ) {
	var p = "popup"+destination.substring(destination.lastIndexOf('/')+1,destination.lastIndexOf('.'));

	if(p == "popupiscsi_systemx_install") {
		if(px) {
			px.close();
		}
		px = window.open(destination, p, 'width=528,height=420,scrollbars=0,resizable=yes');
		px.focus();

	} else {
		if(pb) {
			pb.close();
		}
		pb = window.open(destination, p, 'width=528,height=420,scrollbars=0,resizable=yes');
		pb.focus();
	}
}
