
function pop(url) {
	newwindow=window.open(url,"ContentListing","toolbar=no,directories=no,menubar=no,scrollbars=yes,width=550,height=500,resizable=yes");
	return false;
}
function winPopup(url) { 
	var args = winPopup.arguments;
	if(args.length == 1){
		window.open(url, "ContentListing","toolbar=no,directories=no,menubar=no,scrollbars=yes,width=550,height=500,resizable=yes");
	}else{
		window.open(url, "ContentListing","toolbar=yes,directories=no,menubar=no,scrollbars=yes,width=550,height=500,resizable=yes");
	}
}
function selectURL(){
    var selectedIndex = document.companyForm.source.selectedIndex;   
	var URL = document.companyForm.source.options[selectedIndex].value;
	if(URL == "0"){
		alert("Please select Content Source.");
		return;
	}
	location.href = URL;
}