function OpenWin(path,specs) {
	var isDoc = path.indexOf('.doc');
	var isPdf = path.indexOf('.pdf');
	var isExl = path.indexOf('.xls');
	var isTxt = path.indexOf('.txt');
	var joPdf = path.indexOf('doc_view'); // For Files That Are Behind Member Zone
		
	if (specs) {
		var specs = specs;	
	}
	else {
		if (isDoc >= 0 || isPdf >= 0 || isExl >= 0 || isTxt >= 0 || joPdf >= 0) {
			// Specs for Documents if not specified in link
			var specs = 'width=650, height=600, toolbar=0, location=0, directories=0, status=0, menuBar=1, scrollBars=1, resizable=1';
		}
		else {
			// Specs for Non-Documents if not specified in link
			var specs = 'width=650, height=600, toolbar=1, location=1, directories=1, status=1, menuBar=1, scrollBars=1, resizable=1';
		}
	}
	
	
	window.open(path, 'Link', specs)
}