//#######################################################################################
function window_open_href(objHref, strTarget, confirmationText)
{// function for open window in XHTML 1.1 strict - no target by anchor is allowed
 if(confirmationText!="" && typeof confirmationText !="undefined" )
 {
 	if(window.confirm(confirmationText)) 
		if(objHref.href.search('javascript')==0)return true;
		else window.open(objHref.href, strTarget);
 }else
	if(objHref.href.search('javascript')==0)return true;
	else window.open(objHref.href, strTarget);
 return false;
}// end of function window_open_href(objHref)

