//alert(window.name);
/*window.name = 'opener';

//alert(window.name);
var BV = parseInt(navigator.appVersion);
	    
// browser name
	var BN = "";
	if (navigator.userAgent.indexOf("MSIE") >= 0) {BN = "e";}
	else {
		if (navigator.appName.indexOf("Netscape") >= 0) {BN = "n";}
		else {BN = "g"}
	}

//open window	
function qarticle() { 
var winFeatures = 'width=300,height=235,scrollbars=no';
win = open('quicklink.cfm','popup',winFeatures); 
if (top.BV == 2 && (navigator.appVersion.indexOf('mac')>= 0)) {win = open('quicklink.cfm','poup',winFeatures)} 
if (top.BV == 2 && BN == 'n') {win.opener = top.self;} 
}*/