/*

document pickle module 
(Photodex Internal 'C' Kernel Language Environment)

Copyright (c)1995 Photodex Corporation.  All rights reserved.
Photodex is a trademark of Photodex Corporation.

THIS INFORMATION IS PROPRIETARY AND CONFIDENTIAL.  USE OF THIS INFORMATION
IS STRICTLY PROHIBITED WITHOUT WRITTEN PERMISSION FROM AN EXECUTIVE OFFICER
OF PHOTODEX CORPORATION.

*/

"Copyright (c)1995 Photodex Corporation.  All rights reserved."		// legal copyright notice (emitted in data segment)



export "V()" docArialScript()		/* apply font to selection */
{
	DocApplyArial(curDOC);		/* apply arial font */
}


export "V()" docCourierScript()		/* apply font to selection */
{
	DocApplyCourier(curDOC);		/* apply courier font */
}


export "V()" docTimesScript()		/* apply font to selection */
{
	DocApplyTimes(curDOC);		/* apply times new roman font */
}


export "V()" doc8Script()		/* apply size to selection */
{
	DocApplySize(curDOC,8);		/* apply font size*/
}


export "V()" doc9Script()		/* apply size to selection */
{
	DocApplySize(curDOC,9);		/* apply font size*/
}


export "V()" doc10Script()		/* apply size to selection */
{
	DocApplySize(curDOC,10);		/* apply font size*/
}


export "V()" doc11Script()		/* apply size to selection */
{
	DocApplySize(curDOC,11);		/* apply font size*/
}


export "V()" doc12Script()		/* apply size to selection */
{
	DocApplySize(curDOC,12);		/* apply font size*/
}


export "V()" doc18Script()		/* apply size to selection */
{
	DocApplySize(curDOC,18);		/* apply font size*/
}


export "V()" doc24Script()		/* apply size to selection */
{
	DocApplySize(curDOC,24);		/* apply font size*/
}


export "V()" doc36Script()		/* apply size to selection */
{
	DocApplySize(curDOC,36);		/* apply font size*/
}





























