//Popup windows by OS
//only use the url to open as a new tab/window
//use other attributes to open popup
function fnPoppy(strURL, strTitle, intWidth, intHeight){
	if (strTitle==undefined){
		eval('window.open("'+strURL+'")');
	}else{
		eval('window.open("'+strURL+'", "'+strTitle+'"," width='+intWidth+', height='+intHeight+'")');
	}
}

