/*********************************************************************************
'Author:       Stefan Mattsson (SMA)
'FunctionName: printFrame ()
'Parameters:   in_pID
'Purpose:      Print Frame
'Date:         2007-01-02
'Modified:     N/A
'Comments:     N/A
'*********************************************************************************/
function printFrame(in_pID) {
    var width = 700;
	var height = 600;
	var LeftPosition = (screen.width) ? (screen.width-(width))/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
    window.open("../pages/print.asp?pID="+in_pID, "printFrame", "menubar=yes,toolbar=no,status=yes,scrollbars=no,resizeable=no,width="+width+",height="+height+",left="+LeftPosition+",top="+TopPosition);
}
/*********************************************************************************/
