/*
============================
===== GLOBAL FUNCTIONS =====
============================
*/
function domPopup(src,title,features) {
	var theWindow = new Object();
	if(title+"" == "undefined") title = ""
	if(features+"" == "undefined") features = "resizable=no,scrollbars=yes,status=no,height=230,width=420";
	theWindow = window.open(src,title,features);
}