﻿function OpenWindow (url,width,height) {
    if(width == null)
    {
        width = 800;
    }
    if(height == null)
    {
        height = 600;
    }
   
 fenster = window.open(url, "_blank", "width="+width+",height="+height+",status=yes,scrollbars=yes,resizable=yes");
 fenster.focus();
}


/*<a href="#" onClick="queryAction()">  Click Here! </a> */
function confirmMesg(goifokay, confirmmessage, cancelmessage ) {

	if (confirm(confirmmessage)) {
	
		window.location = goifokay;
	
	} else if (cancelmessage != null) {
	
		alert(cancelmessage);

	}

}

