<!--
function myvoid() { }
function detailwindow(URL) {
        w = screen.availWidth;
        h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
        }
	var popW = 250, popH = 250;
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open(URL,'window2','scrollbars=no,resizable=no,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function OpenMemberDetail(cNum) {
        w = screen.availWidth;
        h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 450, popH = 350;
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('/cgi-bin/members.cgi?individual='+cNum,'window2','scrollbars=no,resizable=no,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function OpenMemberDetailByName(cLastFirst) {
        w = screen.availWidth;
        h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 450, popH = 350;
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('/cgi-bin/members.cgi?lastfirst='+cLastFirst,'window2','scrollbars=no,resizable=no,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function OpenDesignerDetail(cNum) {
        w = screen.availWidth;
        h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 450, popH = 600;
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('/designers.cgi?lastfirst='+cNum,'window2','scrollbars=yes,resizable=no,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function OpenDesignerDetailByNr(cNum) {
        w = screen.availWidth;
        h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 450, popH = 600;
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('/designers.cgi?individual='+cNum,'window2','scrollbars=yes,resizable=no,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}

function OpenContactDetail(cNum) {
        w = screen.availWidth;
        h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 400, popH = 200;
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('/contacts.cgi?individual='+cNum,'window2','scrollbars=yes,resizable=no,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function OpenBigPicture(cURL) {
    w = screen.availWidth;
    h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = w - 100, popH = h - 100;
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('designerpics.cgi?url='+cURL,'window2','scrollbars=yes,resizable=yes,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function OpenGalleryPics(cURL,nWid,nHgt) {
    w = screen.availWidth;
    h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = nWid + 30;
	var popH = nHgt + 70;
	
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('/gallerypics.cgi?url='+cURL,'window2','scrollbars=no,resizable=yes,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function cspics(cURL,nWid,nHgt,cText) {
    w = screen.availWidth;
    h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = nWid + 30;
	var popH = nHgt + 70;
	
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open('/cspics.cgi?url='+cURL+'&itemno='+cText,'window2','scrollbars=yes,resizable=yes,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function csurl(cURL,nWid,nHgt,cText) {
    w = screen.availWidth;
    h = screen.availHeight;
	if (document.all) {
	   /* the following is only available after onLoad */
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	else if (document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = nWid + 30;
	var popH = nHgt + 70;
	
	var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    msgWindow=window.open(cURL,'window2','scrollbars=yes,resizable=yes,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
    if (msgWindow.opener == null) msgWindow.opener = self;
    msgWindow.focus();
}
function resize(cURL) {
    var a = new Image();
    a.src = cURL;
    w = screen.availWidth;
    h = screen.availHeight;
    var popW = a.width + 40;
    var popH = a.height + 90;
    var topPos = (h-popH)/2, leftPos = (w-popW)/2;
    window.moveTo(leftPos, topPos);
    window.resizeTo(popW, popH);
}
function detailwindowprint() {
	window.print();
}
function cswindowclose() {
	window.close();
}
//-->
