﻿<!--
//------------------------------
var theCaller = new Object();
theCaller.view_w =0; //
theCaller.open_w=null;
theCaller.w_feature="toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=650,height=500";

//------------------------------
function open_testsieger(myprop,obj){
    theCaller.w_feature="toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=900,height=697";
    open_view(myprop,obj);
}
function open_view(myprop,obj){

	//obj.href="";
	
	var open_window = 0;
	if (theCaller.selecter_w){
		open_window = theCaller.show_w.closed;
	}else{
		open_window = 1;
	}
	var myURL =myprop;
	var myWindow  = "view";
		//alert ("myURL:" + myURL);
	theCaller.view_w = MM_openBrWindow(myURL,myWindow,theCaller.w_feature);
	if(open_window){
		theCaller.open_w = MM_openBrWindow(myURL,myWindow, theCaller.w_feature);
	}else{
		theCaller.view_w.location.href = myURL;
	}
	theCaller.view_w.focus();
    return false;
	}
//------------------------------
function MM_openBrWindow(theURL,winName,features) { //v2.0
	var   w=window.open(theURL,winName,features);
    return w;
}
-->

