function popWin(url,features) {

    // this is the format for possible features: toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=500,height=500
	
	var didWindowOpen = false;
	
	if (features == null || features == "") {
		didWindowOpen = window.open(url, '_blank');
	} else {
		didWindowOpen = window.open(url, '_blank', features);
	}
	
	
	if (!didWindowOpen) {
    	alert("It looks like this window couldn't open. Please disable your popup blocker to continue.");
    }

}


function popWin1(url,width,height) {
	
	var didWindowOpen = window.open(url, '_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=' + width + ',height=' + height);
    if (!didWindowOpen) {
    	alert("It looks like this window couldn't open. Please disable your popup blocker to continue.");
    }
}


function popWin2(url,width,height) {
    width += 20;
    height += 20;
    window.open(url, '_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + width + ',height=' + height);
}



function popWin3(url,features) {
	
	var didWindowOpen = false;
	
	if (features == null) {
		didWindowOpen = window.open(url, '_blank');
	} else {
		didWindowOpen = window.open(url, '_blank', features);
	}
	
	
	if (!didWindowOpen) {
    	alert("It looks like this window couldn't open. Please disable your popup blocker to continue.");
    }
}