
function popImageWindow() {    
     childWindow = window.open ("/includes/imageupload_popup/imageupload.php","mywindow","menubar=0,resizable=1,width=350,height=250");
     if (childWindow.opener == null) childWindow.opener = self;
}

function popImageWindowQst(qst) {
     childWindow = window.open ("/includes/imageupload_popup/imageupload.php?" + qst,"mywindow","menubar=0,resizable=1,width=350,height=250");
     if (childWindow.opener == null) childWindow.opener = self;
}


function popPdfWindowQst(qst) {
     childWindow = window.open ("/includes/imageupload_popup/pdfupload.php?" + qst,"mywindow","menubar=0,resizable=1,width=350,height=250");
     if (childWindow.opener == null) childWindow.opener = self;
}

function insertImageLink(linkstr, eis) {
    tempStr = '<img border=0 src=\"' + linkstr + '\" />';
    //wysiwyg 
	ei = eval('oEdit' + eis);
    ei.putHTML(ei.getHTML().replace('</body></HTML>',tempStr+'</body></HTML>'));
    ei.putHTML(ei.getHTML().replace('</BODY></HTML>',tempStr+'</BODY></HTML>'));
    //text area   
    // document.getElementById("myarea").value = tempStr;
}

function insertImageTag(linkstr, tagname) {
    tempStr = '<img border=0 src=\"' + linkstr + '\" />';
    //div
    document.getElementById(tagname).innerHTML = tempStr;
}
