function popPrint(height, width, id) {
        eval('var options = "toolbar=no, location=no, directories=no, status=yes, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width='+width+', height='+height+'"');
	var url = 'http://recipes.oregonianextra.com/printer_friendly.php?id=' + id;
        var winname = "addedititem"
        var newwin = window.open(url,winname,options)
//        var newwin = OpenWindow(url,width,height);
        newwin.focus();
}

