function confirmLink(theLink, confirmMsg)
{
    var is_confirmed = confirm(confirmMsg);
    return is_confirmed;
}

function confirmButton(theLink, confirmMsg)
{
    var is_confirmed = confirm(confirmMsg);
    if( is_confirmed ){
		location.href=theLink;
	};
}

function openpopup(popurl){
	var popup=window.open(popurl,"","width=340,height=340,status,resizable,scrollbars,")
	if(!popup){
	  alert("Pop-up was blocked");
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function phpupload(field)
{
	window.open('/_lib/phpupload/?field='+field,'phpupload','width=600,height=450,screenX=100,screenY=100,left=100,top=100,status,dependent,alwaysRaised')
}